HTMLify
index.html
Views: 388 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Reaction Time</title> </head> <style> body{ background-color: #fff; background-size: 8px 8px, 8px 8px; background-position: center, center; background-image: linear-gradient(#ebf4f9 1px, transparent 1px),linear-gradient(90deg, #ebf4f9 1px, transparent 1px); } #cont{ border-width: 5px; width: 100%; height:100%; color:darkslateblue; } #fig{ background-color:brown; border-width:10px; width:100px; height: 126px; } </style> <body> <h1>Reaction Time Test!</h1> <p>Click on the boxes and circles as quickly as you can!</p> <h3>Your time:<span id ="tTaken"></span></h3> <div style="clear:both"></div> <div id="cont"> <div id="fig"></div> </div> <script src="script.js"></script> </body> </html> |